home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / utility1 / gs261src.zip / GSIMPATH.C < prev    next >
C/C++ Source or Header  |  1993-05-13  |  6KB  |  183 lines

  1. /* Copyright (C) 1989, 1992 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* gsimpath.c */
  20. /* Image to outline conversion for Ghostscript library */
  21. #include "gx.h"
  22. #include "gserrors.h"
  23. #include "gsmatrix.h"
  24. #include "gsstate.h"
  25. #include "gspath.h"
  26.  
  27. /* Define the state of the conversion process. */
  28. typedef struct {
  29.     /* The following are set at the beginning of the conversion. */
  30.     gs_state *pgs;
  31.     const byte *data;        /* image data */
  32.     int width, height, raster;
  33.     /* The following are updated dynamically. */
  34.     int dx, dy;            /* X/Y increment of current run */
  35.     int count;            /* # of steps in current run */
  36. } status;
  37.  
  38. /* Define the scaling for the path tracer. */
  39. /* It must be even. */
  40. #define outline_scale 4
  41. /* Define the length of the short strokes for turning corners. */
  42. #define step 1
  43.  
  44. /* Forward declarations */
  45. private int near get_pixel(P3(const status *, int, int));
  46. private int near trace_from(P4(status *, int, int, int));
  47. private int near add_dxdy(P4(status *, int, int, int));
  48. #define add_deltas(s, dx, dy, n)\
  49.   if ( (code = add_dxdy(s, dx, dy, n)) < 0 ) return code
  50. /* Append an outline derived from an image to the current path. */
  51. int
  52. gs_imagepath(gs_state *pgs, int width, int height, const byte *data)
  53. {    status stat;
  54.     status *out = &stat;
  55.     int code, x, y;
  56.     /* Initialize the state. */
  57.     stat.pgs = pgs;
  58.     stat.data = data;
  59.     stat.width = width;
  60.     stat.height = height;
  61.     stat.raster = (width + 7) / 8;
  62.     /* Trace the cells to form an outline.  The trace goes in clockwise */
  63.     /* order, always starting by going west along a bottom edge. */
  64.     for ( y = height - 1; y >= 0; y-- )
  65.       for ( x = width - 1; x >= 0; x-- )
  66.        {    if ( get_pixel(out, x, y) && !get_pixel(out, x, y - 1) &&
  67.              (!get_pixel(out, x + 1, y) || get_pixel(out, x + 1, y - 1)) &&
  68.              !trace_from(out, x, y, 1)
  69.            )
  70.            {    /* Found a starting point */
  71.             stat.count = 0;
  72.             stat.dx = stat.dy = 0;
  73.             if ( (code = trace_from(out, x, y, 0)) < 0 )
  74.                 return code;
  75.             add_deltas(out, 0, 0, 1); /* force out last segment */
  76.             if ( (code = gs_closepath(pgs)) < 0 )
  77.                 return code;
  78.            }
  79.        }
  80.     return 0;
  81. }
  82.  
  83. /* Get a pixel from the data.  Return 0 if outside the image. */
  84. private int near
  85. get_pixel(register const status *out, int x, int y)
  86. {    if ( x < 0 || x >= out->width || y < 0 || y >= out->height )
  87.         return 0;
  88.     return (out->data[y * out->raster + (x >> 3)] >> (~x & 7)) & 1;
  89. }
  90.  
  91. /* Trace a path.  If detect is true, don't draw, just return 1 if we ever */
  92. /* encounter a starting point whose x,y follows that of the initial point */
  93. /* in x-then-y scan order; if detect is false, actually draw the outline. */
  94. private int near
  95. trace_from(register status *out, int x0, int y0, int detect)
  96. {    int x = x0, y = y0;
  97.     int dx = -1, dy = 0;        /* initially going west */
  98.     int part;            /* how far along edge we are */
  99.     int code;
  100.     if ( !detect )
  101.     {    part = (get_pixel(out, x + 1, y - 1) ?
  102.             outline_scale - step : step);
  103.         code = gs_moveto(out->pgs,
  104.                  x + 1 - part / (float)outline_scale,
  105.                  (float)y);
  106.         if ( code < 0 ) return code;
  107.     }
  108.     while ( 1 )
  109.        {    /* Relative to the current direction, */
  110.         /* -dy,dx is at +90 degrees (counter-clockwise); */
  111.         /* tx,ty is at +45 degrees; */
  112.         /* ty,-tx is at -45 degrees (clockwise); */
  113.         /* dy,-dx is at -90 degrees. */
  114.         int tx = dx - dy, ty = dy + dx;
  115.         if ( get_pixel(out, x + tx, y + ty) )
  116.         {    /* Cell at 45 degrees is full, */
  117.             /* go counter-clockwise. */
  118.             if ( !detect )
  119.             {    /* If this is a 90 degree corner set at a */
  120.                 /* 45 degree angle, avoid backtracking. */
  121.                 if ( out->dx == ty && out->dy == -tx )
  122.                 {
  123. #define half_scale (outline_scale / 2 - step)
  124.                     out->count -= half_scale;
  125.                     add_deltas(out, tx, ty, outline_scale / 2);
  126. #undef half_scale
  127.                 }
  128.                 else
  129.                 {    add_deltas(out, dx, dy, step - part);
  130.                     add_deltas(out, tx, ty, outline_scale - step);
  131.                 }
  132.                 part = outline_scale - step;
  133.             }
  134.             x += tx, y += ty;
  135.             dx = -dy, dy += tx;
  136.         }
  137.         else if ( !get_pixel(out, x + dx, y + dy) )
  138.         {    /* Cell straight ahead is empty, go clockwise. */
  139.             if ( !detect )
  140.             {    add_deltas(out, dx, dy, outline_scale - step - part);
  141.                 add_deltas(out, ty, -tx, step);
  142.                 part = step;
  143.             }
  144.             dx = dy, dy -= ty;
  145.         }
  146.         else
  147.         {    /* Neither of the above, go in same direction. */
  148.             if ( !detect )
  149.             {    add_deltas(out, dx, dy, outline_scale);
  150.             }
  151.             x += dx, y += dy;
  152.         }
  153.         if ( dx == -step && dy == 0 && !(tx == -step && ty == -step) )
  154.         {    /* We just turned a corner and are going west, */
  155.             /* so the previous pixel is a starting point pixel. */
  156.             if ( x == x0 && y == y0 ) return 0;
  157.             if ( detect && (y > y0 || y == y0 && x > x0) )
  158.                 return 1;
  159.         }
  160.        }
  161. }
  162.  
  163. /* Add a (dx, dy) pair to the path being formed. */
  164. /* Accumulate successive segments in the same direction. */
  165. private int near
  166. add_dxdy(register status *out, int dx, int dy, int count)
  167. {    if ( count != 0 )
  168.        {    if ( dx == out->dx && dy == out->dy )
  169.             out->count += count;
  170.         else
  171.            {    if ( out->count != 0 )
  172.                {    int code = gs_rlineto(out->pgs,
  173.                    out->dx * out->count / (float)outline_scale,
  174.                    out->dy * out->count / (float)outline_scale);
  175.                 if ( code < 0 ) return code;
  176.                }
  177.             out->dx = dx, out->dy = dy;
  178.             out->count = count;
  179.            }
  180.        }
  181.     return 0;
  182. }
  183.